home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-04-03 | 1.5 KB | 77 lines | [TEXT/MPS ] |
- //----------------------------------------------------------------------------------------
- // MDemoDialogs.cp
- // Copyright © 1988-96 by Apple Computer, Inc. All rights reserved.
- //----------------------------------------------------------------------------------------
-
- #ifndef __UDEMODIALOGS__
- #include "UDemoDialogs.h"
- #endif
-
- // MacApp
-
- // #ifndef __MACAPP__
- // #include "MacApp.h"
- // #endif
-
- #ifndef __UDIALOG__
- #include "UDialog.h"
- #endif
-
- #if qDrag
- #ifndef __UDRAGDROP__
- #include "UDragDrop.h"
- #endif
- #endif
-
- #ifndef __UFLOATWINDOW__
- #include "UFloatWindow.h"
- #endif
-
- #ifndef __UGEOMETRY__
- #include "UGeometry.h"
- #endif
-
- #ifndef __UGRIDVIEW__
- #include "UGridView.h"
- #endif
-
- #ifndef __UPRINTING__
- #include "UPrinting.h"
- #endif
-
- #ifndef __UTEVIEW__
- #include "UTEView.h"
- #endif
-
- //----------------------------------------------------------------------------------------
- // main:
- //----------------------------------------------------------------------------------------
- #pragma push
- #pragma processor 68000
-
- void main()
- {
- InitUMacApp(6); // Initialize MacApp; 6 calls to MoreMasters
-
- InitUTEView();
- InitUDialog();
- #if qDrag
- if (HasDragManager())
- InitUDragManager();
- #endif
- InitUGridView();
- InitUFloatWindow();
- InitUPrinting();
-
- TTestApplication* aTestApplication = new TTestApplication;
- aTestApplication->ITestApplication();
- aTestApplication->Run();
- } // main
-
- #pragma pop
-
- //----------------------------------------------------------------------------------------
- // End of MDemoDialogs.cp
-
- #pragma segment Inline
-